/* Formatos para pagina principal */
@import url('https://fonts.googleapis.com/css2?family=Alkatra&display=swap');

*{
    margin: 0;
    padding: 0;
}


.cuerpo{
    background-color:rgb(137, 177, 114);
    width: 100%;
    height: 100%;
}
.botonera{
    padding-top: 1%;
    padding-bottom: 2%;
    width: 100%;
    height: 10%;
    margin: auto;
    display: flex; 
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

button {
        position: relative;
        display: inline-block;
        cursor: pointer;
        outline: none;
        border: 0;
        vertical-align: middle;
        text-decoration: none;
        font-family: inherit;
        font-size: 15px;
       }
       
       button.learn-more {
        font-weight: 600;
        color: #382b22;
        text-transform: uppercase;
        padding: 1.25em 2em;
        background: #FFDAB9;
        border: 2px solid #b18597;
        border-radius: 0.75em;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
        -webkit-transition: background 150ms cubic-bezier(0, 0, 0.58, 1), -webkit-transform 150ms cubic-bezier(0, 0, 0.58, 1);
        transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), background 150ms cubic-bezier(0, 0, 0.58, 1), -webkit-transform 150ms cubic-bezier(0, 0, 0.58, 1);
       }
       
       button.learn-more::before {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #FFA07A;
        border-radius: inherit;
        -webkit-box-shadow: 0 0 0 2px #b18597, 0 0.625em 0 0 #ffe3e2;
        box-shadow: 0 0 0 2px #b18597, 0 0.625em 0 0 #ffe3e2;
        -webkit-transform: translate3d(0, 0.75em, -1em);
        transform: translate3d(0, 0.75em, -1em);
        transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), box-shadow 150ms cubic-bezier(0, 0, 0.58, 1), -webkit-transform 150ms cubic-bezier(0, 0, 0.58, 1), -webkit-box-shadow 150ms cubic-bezier(0, 0, 0.58, 1);
       }
       
       button.learn-more:hover {
        background: #ffe9e9;
        -webkit-transform: translate(0, 0.25em);
        transform: translate(0, 0.25em);
       }
       
       button.learn-more:hover::before {
        -webkit-box-shadow: 0 0 0 2px #b18597, 0 0.5em 0 0 #ffe3e2;
        box-shadow: 0 0 0 2px #b18597, 0 0.5em 0 0 #ffe3e2;
        -webkit-transform: translate3d(0, 0.5em, -1em);
        transform: translate3d(0, 0.5em, -1em);
       }
       
       button.learn-more:active {
        background: #ffe9e9;
        -webkit-transform: translate(0em, 0.75em);
        transform: translate(0em, 0.75em);
       }
       
       button.learn-more:active::before {
        -webkit-box-shadow: 0 0 0 2px #b18597, 0 0 #ffe3e2;
        box-shadow: 0 0 0 2px #b18597, 0 0 #ffe3e2;
        -webkit-transform: translate3d(0, 0, -1em);
        transform: translate3d(0, 0, -1em);
       }


.titulo{
    background-color: bisque;
    font-size: 150%;
    color: rgb(3, 61, 32);
    text-align: center;
    font-family: 'Alkatra', cursive;
    letter-spacing: 0.5em;

}
.info{
    height: 30%;
    width: 70%;
    margin-top: 2%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
}

.texto{
    /*alto y ancho*/
        height: 100%;
        width: 70%;
    
    /*formato del texto*/
        font-size: 120%;
        font-family:'Rubik Bubbles', cursive; 
        color: rgb(0, 0, 0);
        padding: 1em;
        margin-left: 5em;
    }

.foto {
    /*alto y ancho*/
        width: 35%;
        height: 100%;
    
    }
    
    .foto img{
    /*ancho*/
        width: 100%;
    
    /*bordes de la imagen*/
        border: 4px solid rgb(3, 61, 32);

    }  